Carbon


QDTextProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDTextProcPtr) (
    SInt16 byteCount, 
    Ptr textBuf, 
    Point numer, 
    Point denom
);

You would declare your function like this if you were to name it MyQDTextCallback:

void MyQDTextCallback (
    SInt16 byteCount, 
    Ptr textBuf, 
    Point numer, 
    Point denom
);
byteCount
textBuf
numer
denom

AVAILABILITY

Supported in Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 4/14/2000)